Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633465 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/18 - Stopwatch

font/ cody/swapnilsparsh/30DaysOfJavaScript/18 - Stopwatch/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/18 - Stopwatch/assets/
    1 Items
  • stopwatch.png
  • style.css cody/swapnilsparsh/30DaysOfJavaScript/18 - Stopwatch/style.css
    108 Views
    0 Comments
    *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    }

    @font-face {
    font-family: "sans";
    index.html cody/swapnilsparsh/30DaysOfJavaScript/18 - Stopwatch/index.html
    324 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="shortcut icon" href="assets/stopwatch.png" type="image/x-icon">
    <link rel="stylesheet" href="style.css">
    script.js cody/swapnilsparsh/30DaysOfJavaScript/18 - Stopwatch/script.js
    118 Views
    0 Comments
    const timer = document.getElementById('stopwatch');
    const lapBox = document.getElementById('lapBox');
    var hr = 0;
    var min = 0;
    var sec = 0;
    var stoptime = true;

    const timerCycle= () => {